GetGridMappingInteger Function

public function GetGridMappingInteger(layer) result(grid_mapping)

get grid mapping for a floating point grid

Arguments

Type IntentOptional Attributes Name
type(grid_integer), intent(inout) :: layer

Return Value type(CRS)


Source Code

FUNCTION GetGridMappingInteger &
!
( layer ) &
!
RESULT (grid_mapping)

IMPLICIT NONE
!Arguments with intent(in):
TYPE (grid_integer), INTENT(INOUT) :: layer

!Local variables
TYPE (CRS) :: grid_mapping

!------------end of declaration------------------------------------------------

grid_mapping = layer % grid_mapping

END FUNCTION GetGridMappingInteger